home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 November: Tool Chest / Dev.CD Nov 96 TC / Dev.CD Nov 96 TC.toast / Sample Code / Interapplication Communication / MenuScripter 4.0 / Sources / MSAEDelete.h < prev    next >
Encoding:
Text File  |  1996-07-09  |  528 b   |  23 lines  |  [TEXT/CWIE]

  1. // MSAEDelete.h
  2. //
  3. // Original version by Jon Lansdell and Nigel Humphreys.
  4. // 4.0 and 3.1 updates by Greg Sutton.
  5. // ©Apple Computer Inc 1996, all rights reserved.
  6.  
  7. #ifndef __MSAEDELETE__
  8. #define __MSAEDELETE__
  9.  
  10. #include <AppleEvents.h>
  11. #include <AEObjects.h>
  12. #include <AERegistry.h>
  13.  
  14. #include "MSToken.h"
  15.  
  16. pascal OSErr    DoDelete(const AppleEvent *theAppleEvent, AppleEvent *reply, long refcon);
  17.  
  18. OSErr            DeleteTextToken(TextToken* theToken);
  19. OSErr            DeleteTextDesc(AEDesc* textDesc);
  20. OSErr            DeleteDesc(AEDesc* aDesc);
  21.  
  22. #endif
  23.